home *** CD-ROM | disk | FTP | other *** search
- /* this is an include file for back compatibility to old c compilers */
-
- #ifndef IRDIRENT_H
- #define IRDIRENT_H
-
- #include "cdialect.h"
-
- #ifdef K_AND_R
- #include <sys/dir.h>
- #ifndef ultrix
- #define dirent direct
- #endif /* ndef ultrix */
- #endif /* def K_AND_R */
-
- #if (defined(NeXT) || defined(Mach))
- #include <sys/dir.h>
- #define dirent direct
- #endif /* def NeXT or Mach */
-
- #ifdef M_XENIX
- #include <sys/types.h>
- #include <dirent.h>
- #endif
-
- #if !(defined(K_AND_R) || defined(NeXT) || defined(Mach) || \
- defined(THINK_C) || defined(M_XENIX))
- #include <dirent.h>
- #endif /* not M_XENIX, THINK_C, Mach, NeXT, or K_AND_R */
-
- #endif /* IRDIRENT_H */
-
-
-